home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000114_news@columbia.edu _Tue Apr 22 15:57:24 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA23568
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 22 Apr 1997 15:57:23 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA24771
  7.     for kermit.misc@watsun; Tue, 22 Apr 1997 15:57:23 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Can Kermit confirm files for transfer?
  12. Date: 22 Apr 1997 19:57:22 GMT
  13. Organization: Columbia University
  14. Lines: 29
  15. Message-ID: <5jj572$jtn$1@apakabar.cc.columbia.edu>
  16. References: <01bc4f50$4cf78880$96c348c2@sbw>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6932
  19.  
  20. In article <01bc4f50$4cf78880$96c348c2@sbw>,
  21. Shaun Watters <sbw@enterprise.net> wrote:
  22. : Can anyone tell me if it's possible to have Kermit confirm files for
  23. : transfer, if using a wildcard get. (i.e. GET *.SCR   -  is it possible for
  24. : Kermit to prompt you for a yes or no as to wether to send this file or not.
  25. No.  We considered this, but protocol transfers are time sensitive and should
  26. not hang on waiting for human intervention to proceed, because if the human is
  27. distracted, the other Kermit could easily time out waiting for a reply.
  28.  
  29. Instead we have:
  30.  
  31.  . The SET FILE COLLISION mechanism, which works without human intervention,
  32.    but kicks in only if the incoming file has the same name as an existing
  33.    file.
  34.  
  35.  . File-transfer interruption.  If you are receiving a group of files, the
  36.    Kermit program lets you type a character (usually X or F) to cancel the
  37.    current file and go on to the next one.
  38.  
  39.  . In C-Kermit 6.0 we have the SEND LIST.  So if it's the one on the far end,
  40.    you can build a specific list of files to be sent a priori.  The list can
  41.    contain any mixture of text and binary files, wilcards and simple
  42.    filenames, files from any mixture of directories, etc, and each file can
  43.    have its own "as-name".
  44.  
  45. One of these techniques should fit your requirements.
  46.  
  47. - Frank